How to build and run the example:
---------------------------------

1. create a build folder and enter e.g.:
   mkdir my_build_folder
   cd my_build_folder

2. prepare the CMake build environment e.g.:
   cmake [path to this directory]
   Options:
   -DTCP=off    => disable tcp connector
   -DSERIAL=off => disable serial connector
   -DDEBUG=on   => set log level of netxtransport library to 0xFF
                   and enable debug messages of connector
                   NOTE: only enable for debugging purposes

   e.g. cmake ../netxtransport_example -DSERIAL=off -DDEBUG=on

3. run make
   make

4. run application
   ./netxtransport_demo
 
   NOTE: To run the tcp connector a configuration file is required.
         An example resides in the tcp connector folder (tcpconfig0).
         The configuration files must reside in the execution path.
